home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / bibwin11.zip / GO.BAT < prev    next >
DOS Batch File  |  1991-09-26  |  2KB  |  63 lines

  1. @echo off
  2. if '%1'=='d:' goto ford
  3. if '%1'=='D:' goto ford
  4. if '%1'=='e:' goto fore
  5. if '%1'=='E:' goto fore
  6. echo This batch file creates a directory named c:\biblewin and copies 
  7. echo files to it.  To load the program to drive d: or e: if available, 
  8. echo stop the batch file, and run it again with the drive letter as a 
  9. echo parameter.
  10. echo Example: at the DOS prompt enter "go d:" to install on drive d 
  11. echo in directory d:\biblewin   (Do not type in the "" marks.)
  12. echo To stop batch file, hold the control (Ctrl) key
  13. echo and press the Break key.
  14. pause Press a key to continue.
  15. md c:\biblewin >nul
  16. copy go.bat c:\biblewin > nul
  17. copy readme.* c:\biblewin > nul
  18. copy list.com c:\biblewin > nul
  19. copy saver.exe c:\biblewin > nul
  20. copy bw.exe c:\biblewin > nul
  21. copy sq.exe c:\biblewin > nul
  22. copy register.frm c:\biblewin > nul
  23. copy qlist c:\biblewin >nul
  24. copy verses.niv c:\biblewin >nul
  25. copy twb c:\biblewin >nul
  26. echo For information on running the program, see the readme file.
  27. pause
  28. goto done
  29.  
  30. :ford
  31. echo Installing Bible Window...
  32. md d:\biblewin >nul
  33. copy go.bat d:\biblewin > nul
  34. copy readme.* d:\biblewin > nul
  35. copy list.com d:\biblewin > nul
  36. copy saver.exe d:\biblewin > nul
  37. copy bw.exe d:\biblewin > nul
  38. copy sq.exe d:\biblewin > nul
  39. copy register.frm d:\biblewin > nul
  40. copy qlist d:\biblewin >nul
  41. copy verses.niv d:\biblewin >nul
  42. copy twb d:\biblewin >nul
  43. echo For information on running the program, see the readme file.
  44. pause
  45. goto done
  46.  
  47. :fore
  48. echo Installing Bible Window...
  49. md e:\biblewin >nul
  50. copy go.bat e:\biblewin > nul
  51. copy readme.* e:\biblewin > nul
  52. copy list.com e:\biblewin > nul
  53. copy saver.exe e:\biblewin > nul
  54. copy bw.exe e:\biblewin > nul
  55. copy sq.exe e:\biblewin > nul
  56. copy register.frm e:\biblewin > nul
  57. copy qlist e:\biblewin >nul
  58. copy verses.niv e:\biblewin >nul
  59. copy twb e:\biblewin >nul
  60. echo For information on running the program, see the readme file.
  61. pause
  62. :done
  63.